2025-07-28 10:16:12,636 [ 297285 ] INFO : ClickHouse root is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse (runner:53, check_args_and_update_paths) 2025-07-28 10:16:12,636 [ 297285 ] INFO : Cases dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:79, check_args_and_update_paths) 2025-07-28 10:16:12,636 [ 297285 ] INFO : utils dir is not set. Will use /home/ubuntu/_work/ClickHouse/ClickHouse/utils (runner:90, check_args_and_update_paths) 2025-07-28 10:16:12,636 [ 297285 ] INFO : base_configs_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/programs/server, binary: /home/ubuntu/_work/_temp/test/build/clickhouse, cases_dir: /home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration (runner:92, check_args_and_update_paths) clickhouse_integration_tests_volume Running pytest container as: 'docker run --rm --name clickhouse_integration_tests_pslk9s --privileged --dns-search='.' --memory=30709022720 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel1_1.jsonl --report-log-exclude-logs-on-passed-tests test_git_import/test.py::test_git_import -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 '. Start tests ============================= test session starts ============================== platform linux -- Python 3.10.12, pytest-7.4.4, pluggy-1.5.0 -- /usr/bin/python3 cachedir: .pytest_cache Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket= rootdir: /ClickHouse/tests/integration configfile: pytest.ini plugins: timeout-2.3.1, repeat-0.9.3, order-1.0.0, reportlog-0.4.0, xdist-3.5.0, random-order-1.1.1 timeout: 900.0s timeout method: signal timeout func_only: False created: 10/10 workers 10 workers [1 item] scheduling tests via LoadFileScheduling test_git_import/test.py::test_git_import [gw2] [100%] FAILED test_git_import/test.py::test_git_import =================================== FAILURES =================================== _______________________________ test_git_import ________________________________ [gw2] linux -- Python 3.10.12 /usr/bin/python3 def test_git_import(): repo = "https://github.com/githubtraining/hellogitworld.git" commit = "ef7bebf8bdb1919d947afe46ab4b2fb4278039b3" dir = "/tmp/hellogitworld" > clone_git_repository(repo, dir, commit=commit) test_git_import/test.py:173: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ test_git_import/test.py:32: in clone_git_repository node.exec_in_container(["bash", "-c", command]) helpers/cluster.py:4117: in exec_in_container return self.cluster.exec_in_container( helpers/cluster.py:2069: in exec_in_container result = subprocess_check_call( helpers/cluster.py:239: in subprocess_check_call return run_and_check(args, detach=detach, nothrow=nothrow, **kwargs) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ args = ['docker', 'exec', 'roottestgitimport-gw2-node-1', 'bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworl.../githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] env = None, shell = False, stdout = -1, stderr = -1, timeout = 300 nothrow = False, detach = False def run_and_check( args: Union[Sequence[str], str], env=None, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE, timeout=300, nothrow=False, detach=False, ) -> str: if shell: if isinstance(args, str): shell_args = args else: shell_args = next(a for a in args) else: shell_args = " ".join(args) logging.debug("Command:[%s]", shell_args) if detach: subprocess.Popen( args, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL, env=env, shell=shell, ) return "" res = subprocess.run( args, stdout=stdout, stderr=stderr, env=env, shell=shell, timeout=timeout, check=False, ) out = res.stdout.decode("utf-8", "ignore") err = res.stderr.decode("utf-8", "ignore") # check_call(...) from subprocess does not print stderr, so we do it manually for outline in out.splitlines(): logging.debug("Stdout:%s", outline) for errline in err.splitlines(): logging.debug("Stderr:%s", errline) if res.returncode != 0: logging.debug("Exitcode:%s", res.returncode) if env: logging.debug("Env:%s", env) if not nothrow: > raise Exception( f"Command [{shell_args}] return non-zero code {res.returncode}: {res.stderr.decode('utf-8')}" ) E Exception: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com helpers/cluster.py:153: Exception ---------------------------- Captured stdout setup ----------------------------- Copy common default production configuration from /clickhouse-config. Files: config.xml, users.xml ------------------------------ Captured log setup ------------------------------ 2025-07-28 10:16:20.625000 [ 616 ] DEBUG : Command:[docker ps | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:16:20.654000 [ 616 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:16:20.654000 [ 616 ] DEBUG : No running containers (conftest.py:95, cleanup_environment) 2025-07-28 10:16:20.654000 [ 616 ] DEBUG : Pruning Docker networks (conftest.py:97, cleanup_environment) 2025-07-28 10:16:20.655000 [ 616 ] DEBUG : Command:[docker network prune --force] (cluster.py:121, run_and_check) 2025-07-28 10:16:20.679000 [ 616 ] DEBUG : Command:[sysctl net.ipv4.ip_local_port_range='55000 65535'] (cluster.py:121, run_and_check) 2025-07-28 10:16:20.682000 [ 616 ] DEBUG : Stdout:net.ipv4.ip_local_port_range = 55000 65535 (cluster.py:145, run_and_check) 2025-07-28 10:16:20.683000 [ 616 ] INFO : Running tests in /ClickHouse/tests/integration/test_git_import/test.py (cluster.py:2738, start) 2025-07-28 10:16:20.683000 [ 616 ] DEBUG : Cluster start called. is_up=False (cluster.py:2745, start) 2025-07-28 10:16:20.708000 [ 616 ] DEBUG : Docker networks for project roottestgitimport-gw2 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:16:20.737000 [ 616 ] DEBUG : Docker containers for project roottestgitimport-gw2 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:16:20.771000 [ 616 ] DEBUG : Docker volumes for project roottestgitimport-gw2 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:16:20.771000 [ 616 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:16:20.802000 [ 616 ] DEBUG : Docker networks for project roottestgitimport-gw2 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:16:20.840000 [ 616 ] DEBUG : Docker containers for project roottestgitimport-gw2 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:16:20.872000 [ 616 ] DEBUG : Docker volumes for project roottestgitimport-gw2 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:16:20.872000 [ 616 ] DEBUG : Command:[docker container list --all --filter name='^/roottestgitimport-gw2-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:16:20.905000 [ 616 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:16:20.905000 [ 616 ] DEBUG : No running containers for project: roottestgitimport-gw2 (cluster.py:879, cleanup) 2025-07-28 10:16:20.905000 [ 616 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:16:20.935000 [ 616 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:16:20.936000 [ 616 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:16:20.982000 [ 616 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:16:20.982000 [ 616 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:16:20.982000 [ 616 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:16:20.983000 [ 616 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:16:21.012000 [ 616 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:16:21.013000 [ 616 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) 2025-07-28 10:16:21.013000 [ 616 ] DEBUG : Setup directory for instance: node (cluster.py:2758, start) 2025-07-28 10:16:21.014000 [ 616 ] DEBUG : Create directory for configuration generated in this helper (cluster.py:4628, create_dir) 2025-07-28 10:16:21.014000 [ 616 ] DEBUG : Create directory for common tests configuration (cluster.py:4633, create_dir) 2025-07-28 10:16:21.014000 [ 616 ] DEBUG : Copy common configuration from helpers (cluster.py:4653, create_dir) 2025-07-28 10:16:21.015000 [ 616 ] DEBUG : Generate and write macros file (cluster.py:4705, create_dir) 2025-07-28 10:16:21.015000 [ 616 ] DEBUG : Copy custom test config files [] to /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/configs/config.d (cluster.py:4741, create_dir) 2025-07-28 10:16:21.015000 [ 616 ] DEBUG : Setup database dir /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/database (cluster.py:4758, create_dir) 2025-07-28 10:16:21.016000 [ 616 ] DEBUG : Setup logs dir /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/logs (cluster.py:4769, create_dir) 2025-07-28 10:16:21.016000 [ 616 ] DEBUG : Entrypoint cmd: ["clickhouse", "server", "--config-file=/etc/clickhouse-server/config.xml", "--log-file=/var/log/clickhouse-server/clickhouse-server.log", "--errorlog-file=/var/log/clickhouse-server/clickhouse-server.err.log", "--"] (cluster.py:4850, create_dir) 2025-07-28 10:16:21.016000 [ 616 ] DEBUG : Env {'ASAN_OPTIONS': 'use_sigaltstack=0', 'TSAN_OPTIONS': 'use_sigaltstack=0', 'CLICKHOUSE_WATCHDOG_ENABLE': '0', 'CLICKHOUSE_NATS_TLS_SECURE': '0', 'LLVM_PROFILE_FILE': '/var/lib/clickhouse/server_%h_%p_%m.profraw'} stored in /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/.env (cluster.py:96, _create_env_file) 2025-07-28 10:16:21.016000 [ 616 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:16:21.017000 [ 616 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:16:21.017000 [ 616 ] DEBUG : Trying paths: ['/root/.docker/config.json', '/root/.dockercfg'] (config.py:21, find_config_file) 2025-07-28 10:16:21.017000 [ 616 ] DEBUG : No config file found (config.py:28, find_config_file) 2025-07-28 10:16:21.030000 [ 616 ] DEBUG : http://localhost:None "GET /version HTTP/1.1" 200 826 (connectionpool.py:547, _make_request) 2025-07-28 10:16:21.031000 [ 616 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/.env --project-name roottestgitimport-gw2 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/docker-compose.yml pull] (cluster.py:121, run_and_check) 2025-07-28 10:16:31.546000 [ 616 ] DEBUG : Stderr: node Pulling (cluster.py:147, run_and_check) 2025-07-28 10:16:31.547000 [ 616 ] DEBUG : Stderr: node Pulled (cluster.py:147, run_and_check) 2025-07-28 10:16:31.547000 [ 616 ] DEBUG : ('Trying to create ClickHouse instance by command %s', 'docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/.env --project-name roottestgitimport-gw2 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/docker-compose.yml up -d --no-recreate') (cluster.py:3139, start) 2025-07-28 10:16:31.547000 [ 616 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/.env --project-name roottestgitimport-gw2 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/docker-compose.yml up -d --no-recreate] (cluster.py:121, run_and_check) 2025-07-28 10:16:32.227000 [ 616 ] DEBUG : Stderr: Network roottestgitimport-gw2_default Creating (cluster.py:147, run_and_check) 2025-07-28 10:16:32.227000 [ 616 ] DEBUG : Stderr: Network roottestgitimport-gw2_default Created (cluster.py:147, run_and_check) 2025-07-28 10:16:32.227000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Creating (cluster.py:147, run_and_check) 2025-07-28 10:16:32.227000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Created (cluster.py:147, run_and_check) 2025-07-28 10:16:32.228000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Starting (cluster.py:147, run_and_check) 2025-07-28 10:16:32.228000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Started (cluster.py:147, run_and_check) 2025-07-28 10:16:32.228000 [ 616 ] DEBUG : ClickHouse instance created (cluster.py:3147, start) 2025-07-28 10:16:32.228000 [ 616 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2005, get_instance_ip) 2025-07-28 10:16:32.232000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw2-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.233000 [ 616 ] DEBUG : get_instance_ip instance_name=node (cluster.py:2015, get_instance_global_ipv6) 2025-07-28 10:16:32.236000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw2-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.237000 [ 616 ] DEBUG : Waiting for ClickHouse start in node, ip: 172.16.1.2... (cluster.py:3155, start) 2025-07-28 10:16:32.239000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/roottestgitimport-gw2-node-1/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.243000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.347000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.452000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.556000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.660000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.764000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.868000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:32.972000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.077000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.182000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.287000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.392000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.498000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.603000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.707000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.811000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:33.916000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.020000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.125000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.229000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.333000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.437000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.541000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.646000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.751000 [ 616 ] DEBUG : http://localhost:None "GET /v1.46/containers/ee6b9bc5a001418304e12fa4ab16b15e1a2fb64f965de4537df63447f5e2ffb8/json HTTP/1.1" 200 None (connectionpool.py:547, _make_request) 2025-07-28 10:16:34.752000 [ 616 ] DEBUG : ClickHouse node started (cluster.py:3159, start) ------------------------------ Captured log call ------------------------------- 2025-07-28 10:16:34.756000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:34.756000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:36.857000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:36.857000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:36.858000 [ 616 ] WARNING : Attempt #1 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:37.859000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:37.860000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:39.954000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:39.954000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:39.954000 [ 616 ] WARNING : Attempt #2 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:40.955000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:40.956000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:43.050000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:43.050000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:43.050000 [ 616 ] WARNING : Attempt #3 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:44.052000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:44.052000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:46.152000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:46.152000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:46.153000 [ 616 ] WARNING : Attempt #4 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:47.154000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:47.154000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:49.256000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:49.256000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:49.257000 [ 616 ] WARNING : Attempt #5 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:50.258000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:50.258000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:52.356000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:52.357000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:52.357000 [ 616 ] WARNING : Attempt #6 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:53.358000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:53.359000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:55.463000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:55.463000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:55.463000 [ 616 ] WARNING : Attempt #7 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:56.465000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:56.465000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:16:58.558000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:16:58.559000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:16:58.559000 [ 616 ] WARNING : Attempt #8 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:16:59.560000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:16:59.561000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:17:01.656000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:17:01.656000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:17:01.656000 [ 616 ] WARNING : Attempt #9 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will try again (test.py:36, clone_git_repository) 2025-07-28 10:17:02.658000 [ 616 ] DEBUG : run container_id:roottestgitimport-gw2-node-1 detach:False nothrow:False cmd: ['bash', '-c', 'rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3'] (cluster.py:2051, exec_in_container) 2025-07-28 10:17:02.658000 [ 616 ] DEBUG : Command:[docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] (cluster.py:121, run_and_check) 2025-07-28 10:17:04.754000 [ 616 ] DEBUG : Stderr:fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com (cluster.py:147, run_and_check) 2025-07-28 10:17:04.755000 [ 616 ] DEBUG : Exitcode:128 (cluster.py:149, run_and_check) 2025-07-28 10:17:04.755000 [ 616 ] WARNING : Attempt #10 to clone repository https://github.com/githubtraining/hellogitworld.git failed. Error: Command [docker exec roottestgitimport-gw2-node-1 bash -c rm -rf /tmp/hellogitworld && mkdir /tmp/hellogitworld && cd /tmp/hellogitworld && git clone --quiet https://github.com/githubtraining/hellogitworld.git /tmp/hellogitworld && git checkout --quiet ef7bebf8bdb1919d947afe46ab4b2fb4278039b3] return non-zero code 128: fatal: unable to access 'https://github.com/githubtraining/hellogitworld.git/': Could not resolve host: github.com , will stop (test.py:36, clone_git_repository) ---------------------------- Captured log teardown ----------------------------- 2025-07-28 10:17:05.275000 [ 616 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/.env --project-name roottestgitimport-gw2 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/docker-compose.yml stop --timeout 20] (cluster.py:121, run_and_check) 2025-07-28 10:17:11.765000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:17:11.765000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:17:11.766000 [ 616 ] DEBUG : Command:[bash -c [ -f /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/logs/stderr.log ] && zgrep -aH "==================" /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/logs/stderr.log* | ( [ -z "" ] && cat || grep -v "$" ) || true] (cluster.py:121, run_and_check) 2025-07-28 10:17:11.783000 [ 616 ] DEBUG : Command:[docker compose --env-file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/.env --project-name roottestgitimport-gw2 --file /ClickHouse/tests/integration/test_git_import/_instances-1-gw2/node/docker-compose.yml down --volumes] (cluster.py:121, run_and_check) 2025-07-28 10:17:12.286000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Stopping (cluster.py:147, run_and_check) 2025-07-28 10:17:12.287000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Stopped (cluster.py:147, run_and_check) 2025-07-28 10:17:12.287000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Removing (cluster.py:147, run_and_check) 2025-07-28 10:17:12.287000 [ 616 ] DEBUG : Stderr: Container roottestgitimport-gw2-node-1 Removed (cluster.py:147, run_and_check) 2025-07-28 10:17:12.287000 [ 616 ] DEBUG : Stderr: Network roottestgitimport-gw2_default Removing (cluster.py:147, run_and_check) 2025-07-28 10:17:12.287000 [ 616 ] DEBUG : Stderr: Network roottestgitimport-gw2_default Removed (cluster.py:147, run_and_check) 2025-07-28 10:17:12.288000 [ 616 ] DEBUG : Cleanup called (cluster.py:851, cleanup) 2025-07-28 10:17:12.318000 [ 616 ] DEBUG : Docker networks for project roottestgitimport-gw2 are NETWORK ID NAME DRIVER SCOPE (cluster.py:830, print_all_docker_pieces) 2025-07-28 10:17:12.349000 [ 616 ] DEBUG : Docker containers for project roottestgitimport-gw2 are CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES (cluster.py:838, print_all_docker_pieces) 2025-07-28 10:17:12.379000 [ 616 ] DEBUG : Docker volumes for project roottestgitimport-gw2 are DRIVER VOLUME NAME (cluster.py:846, print_all_docker_pieces) 2025-07-28 10:17:12.379000 [ 616 ] DEBUG : Command:[docker container list --all --filter name='^/roottestgitimport-gw2-.*-1$' --format '{{.ID}}:{{.Names}}'] (cluster.py:121, run_and_check) 2025-07-28 10:17:12.409000 [ 616 ] DEBUG : Unstopped containers: {} (cluster.py:865, cleanup) 2025-07-28 10:17:12.409000 [ 616 ] DEBUG : No running containers for project: roottestgitimport-gw2 (cluster.py:879, cleanup) 2025-07-28 10:17:12.409000 [ 616 ] DEBUG : Trying to prune unused networks... (cluster.py:885, cleanup) 2025-07-28 10:17:12.444000 [ 616 ] DEBUG : Trying to prune unused images... (cluster.py:901, cleanup) 2025-07-28 10:17:12.445000 [ 616 ] DEBUG : Command:[docker image prune -f] (cluster.py:121, run_and_check) 2025-07-28 10:17:12.488000 [ 616 ] DEBUG : Stdout:Total reclaimed space: 0B (cluster.py:145, run_and_check) 2025-07-28 10:17:12.489000 [ 616 ] DEBUG : Images pruned (cluster.py:904, cleanup) 2025-07-28 10:17:12.489000 [ 616 ] DEBUG : Trying to prune unused volumes... (cluster.py:910, cleanup) 2025-07-28 10:17:12.489000 [ 616 ] DEBUG : Command:[docker volume ls | wc -l] (cluster.py:121, run_and_check) 2025-07-28 10:17:12.521000 [ 616 ] DEBUG : Stdout:1 (cluster.py:145, run_and_check) 2025-07-28 10:17:12.521000 [ 616 ] DEBUG : Volumes pruned: 1 (cluster.py:915, cleanup) ----------------- generated report log file: parallel1_1.jsonl ----------------- ============================== slowest durations =============================== 30.00s call test_git_import/test.py::test_git_import 14.13s setup test_git_import/test.py::test_git_import 7.25s teardown test_git_import/test.py::test_git_import =========================== short test summary info ============================ FAILED test_git_import/test.py::test_git_import - Exception: Command [docker ... ============================== 1 failed in 54.72s ============================== Traceback (most recent call last): File "/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration/./runner", line 492, in subprocess.check_call(cmd, shell=True, bufsize=0) File "/usr/lib/python3.10/subprocess.py", line 369, in check_call raise CalledProcessError(retcode, cmd) subprocess.CalledProcessError: Command 'docker run --rm --name clickhouse_integration_tests_pslk9s --privileged --dns-search='.' --memory=30709022720 --security-opt seccomp=unconfined --cap-add=SYS_PTRACE --volume=/home/ubuntu/_work/_temp/test/build/clickhouse:/clickhouse --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/programs/server:/clickhouse-config --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/tests/integration:/ClickHouse/tests/integration --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/backupview:/ClickHouse/utils/backupview --volume=/home/ubuntu/_work/ClickHouse/ClickHouse/utils/grpc-client/pb2:/ClickHouse/utils/grpc-client/pb2 --volume=/run:/run/host:ro --volume=clickhouse_integration_tests_volume:/var/lib/docker -e DOCKER_DOTNET_CLIENT_TAG=11de0b29a15d -e DOCKER_HELPER_TAG=5dc43a6382f0 -e DOCKER_BASE_TAG=5ccda723c1fc -e DOCKER_KERBEROS_KDC_TAG=9391ecdee8d7 -e DOCKER_MYSQL_GOLANG_CLIENT_TAG=9bec2a638e6e -e DOCKER_MYSQL_JAVA_CLIENT_TAG=766bff31cfe4 -e DOCKER_MYSQL_JS_CLIENT_TAG=41ba7c2ec2a1 -e DOCKER_MYSQL_PHP_CLIENT_TAG=88be89c1e3b6 -e DOCKER_NGINX_DAV_TAG=b55ac9cd7519 -e DOCKER_POSTGRESQL_JAVA_CLIENT_TAG=a4eff5c7f4d6 -e DOCKER_PYTHON_BOTTLE_TAG=d862517635bf -e DOCKER_CLIENT_TIMEOUT=300 -e COMPOSE_HTTP_TIMEOUT=600 -e PYTHONUNBUFFERED=1 -e PYTEST_ADDOPTS="--dist=loadfile -n 10 -rfEps --run-id=1 --color=no --durations=0 --report-log=parallel1_1.jsonl --report-log-exclude-logs-on-passed-tests test_git_import/test.py::test_git_import -vvv " altinityinfra/integration-tests-runner:226bfaf75ac1 ' returned non-zero exit status 1.